Code coverage report for ./src/app.js

Statements: 100% (6 / 6)      Branches: 100% (0 / 0)      Functions: 100% (3 / 3)      Lines: 100% (6 / 6)     

All files » ./src\ » app.js
1 2 3 4 5 6 7 8 9 10 11 12 13 141   1 1     1 1     1      
define(function() {
 
    var App = function(el) {
        this.el = el;
    };
 
    App.prototype.render = function() {
        this.el.html('require.js up and running');
    };
 
    return App;
 
});